UCF STIG Viewer Logo

The Cisco switch must be configured to support organizational requirements to conduct backups of the configuration when changes occur.


Overview

Finding ID Version Rule ID IA Controls Severity
V-220514 CISC-ND-001410 SV-220514r604141_rule Medium
Description
System-level information includes default and customized settings and security attributes, including ACLs that relate to the network device configuration, as well as software required for the execution and operation of the device. Information system backup is a critical step in ensuring system integrity and availability. If the system fails and there is no backup of the system-level information, a denial of service condition is possible for all who utilize this critical network component. This control requires the network device to support the organizational central backup process for system-level information associated with the network device. This function may be provided by the network device itself; however, the preferred best practice is a centralized backup rather than each network device performing discrete backups.
STIG Date
Cisco NX-OS Switch NDM Security Technical Implementation Guide 2021-09-16

Details

Check Text ( C-22229r539263_chk )
Review the Cisco switch configuration to verify that it is compliant with this requirement. The example configuration below will send the configuration to a TFTP server when a configuration change occurs.

event manager applet BACKUP_CONFIG
event syslog pattern "SYSLOG_CONFIG_I"
action 1 cli command "copy startup-config tftp://10.1.48.10/nx-config vrf default"
action 2 syslog priority informational msg "Configuration backup was executed"

If the Cisco switch is not configured to conduct backups of the configuration when changes occur, this is a finding.
Fix Text (F-22218r539264_fix)
Configure the Cisco switch to send the configuration to an TFTP or FTP server when a configuration change occurs as shown in the example below:

SW4(config)# event manager applet BACKUP_CONFIG
SW4(config-applet)# event syslog pattern "SYSLOG_CONFIG_I"
SW4(config-applet)# action 1 cli command "copy startup-config tftp://10.1.48.10/nx-config vrf default”
SW4(config-applet)# action 2 syslog priority informational msg "Configuration backup was executed"
SW4(config-applet)# end